
			/* Styles généraux */

html {
	font-family: sans-serif;
}

body {
	width: 100%;
	max-width: 1024px;
	margin: 10px auto;
	font-size: 0.9em;
}

header {
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-around;
}

main {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	flex-wrap: wrap;
}

footer {
	display: flex;
	justify-content: space-between;
	font-size: 0.7em;
	padding: 0 1em;
}

footer p {
	text-indent: 0;
}

h3 {
	text-align: center;
	font-size: 1.5em;
	color: green;
	padding: 10px;
	margin-bottom: 0px;
}

h4 {
	text-align: center;
	font-size: 1.2em;
	color: green;
	padding: 0px;
	margin: 0px;
	margin-top: 10px;
}

article {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: center;
	align-items: center;
}

div {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

p {
	color: #555;
	text-indent: 30px;
	margin: 5px;
}

img {
	border-radius: 10px;
	width: 100%;
}

.bouton {
	display: flex;
	justify-content: space-around;
	width: 8em;
	margin: 1px;
	background-color: #eee;
	border: solid 1px #888;
	border-radius: 5px;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	color: #55a;
	font-style: italic;
	font-size:100%;
	cursor: pointer;
}	

.bouton:hover {
	background-color: #ddd;
	color: #55a;
	font-weight: bold;
}

.bouton a {
	width: 100%;
}

			/* Styles spécifiques page Accueil */

.menu_accueil {
	display: flex;
	width: 100%;
	font-size:1.2em;
}

.dernier {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 3px;
}

.photos_titre {
	width:100%;
	margin: 20px;
	overflow: hidden;
	flex-shrink: 0;
	justify-content: space-around;
}

.photo1 {
	width:20%;
	margin: 20px;
	overflow: hidden;
	flex-shrink: 0;
	justify-content: space-around;
}

.photo2 {
	width:80%;
	margin: 10px;
	overflow: hidden;
	flex-shrink: 0;
	justify-content: space-around;
}

.photo3 {
	width:25%;
	min-width: 200px;
	margin: 10px;
	overflow: hidden;
	flex-shrink: 0;
	justify-content: space-around;
}

			/* Styles spécifiques pages Listes */
.menu_pages {
	display: flex;
	width: 100%;
	font-size:1em;
	padding-top: 10px;
	margin-top: 10px;
	border-top: solid 1px #888;
}

.serie {
	height: 500px;
	width: 80%;
	padding: 0px;
	margin: 0px;
	background-color: #eee;
	border: solid 1px green;
	border-radius: 10px;
	overflow: auto;
}

.serie a {
	text-decoration: none;
	color: #11a;
}
	
.serie a:hover {
	color: #008;
	font-weight: bold;
}

.serie a:visited {
	color: #99d;
}

dt {
  background-color: #ddd;
  color: black;
  padding: 10px;
  position: sticky;
  top: 0px;
  left: 0;
  margin:  0px;
}